home *** CD-ROM | disk | FTP | other *** search
/ Champak 140 / (Vol 140) Sep 19 2011.iso / Games / theLifeArk.swf / scripts / DefineSprite_28 / frame_114 / DoAction.as
Text File  |  2011-09-19  |  175b  |  14 lines

  1. stop();
  2. onEnterFrame = function()
  3. {
  4.    if(_alpha <= 0)
  5.    {
  6.       _parent.play();
  7.       delete onEnterFrame;
  8.    }
  9.    else
  10.    {
  11.       _alpha = _alpha - 5;
  12.    }
  13. };
  14.